﻿/* 1. Set positioning context for the parent item */
.nav-item.has-dropdown {
    position: relative;
}

/* 2. Style the Dropdown Container (Hidden by default) */
.dropdown-menu {
    position: absolute;
    top: 100%; /* Positions it directly below the parent link */
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 220px;
    display: none; /* Hidden initially */
    flex-direction: column;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    border-top: 3px solid var(--primary-color); /* Adds a colored top border */
}

/* 3. Show Dropdown on Hover */
.nav-item.has-dropdown:hover .dropdown-menu {
    display: block; /* Makes it visible when hovering the li */
    animation: slideDown 0.3s ease;
}

/* 4. Style Dropdown Links */
.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 12px 25px;
    display: block;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

    .dropdown-menu a:hover {
        background-color: var(--bg-light);
        color: var(--primary-color);
        padding-left: 30px; /* Slight movement effect */
    }

/* Simple Slide Down Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #2e59d9;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
}/* --- PRODUCT DETAILS --- */
.product-image-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: #fff;
    padding: 20px;
    text-align: center;
}

    .product-image-slider img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        object-fit: contain;
        border-radius: 5px;
    }

.product-info-detail .co-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.drop-cap {
    float: left;
    font-size: 48px;
    line-height: 1;
    margin-right: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

/* --- TABS --- */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title span {
        color: var(--primary-color);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .section-title h2 {
        font-size: 32px;
        margin-top: 5px;
        font-family: 'Space Grotesk', sans-serif;
    }

.spec-tabs-container {
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.spec-tabs-nav {
    display: flex;
    background: #f9f9f9;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.spec-tab-btn {
    padding: 20px 25px;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    flex: 1;
}

    .spec-tab-btn:hover {
        color: var(--primary-color);
        background: #fff;
    }

    .spec-tab-btn.active {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        background: #fff;
    }

.spec-tab-content {
    padding: 40px;
    display: none;
    animation: fadeIn 0.5s ease;
}

    .spec-tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tab-content-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .tab-content-img img {
        width: 100%;
        height: auto;
        display: block;
    }

.tab-features-list {
    list-style: none;
    margin-top: 15px;
}

    .tab-features-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

        .tab-features-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 2px;
        }

.download-btn {
    display: inline-block;
    background: var(--text-dark);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

    .download-btn:hover {
        background: var(--primary-color);
        color: #fff;
    }/* ===== SMART SYSTEMS PAGE OVERRIDES ===== */

/* Key differentiator badges */
.key-differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.diff-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(72, 181, 73, 0.06);
    border: 1px solid rgba(72, 181, 73, 0.12);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s ease;
}

    .diff-badge:hover {
        background: rgba(72, 181, 73, 0.1);
        border-color: rgba(72, 181, 73, 0.25);
        transform: translateY(-2px);
    }

.diff-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(72, 181, 73, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .diff-badge-icon i {
        color: var(--secondary, #48b549);
        font-size: 0.85rem;
    }

.diff-badge-text h4 {
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.diff-badge-text p {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

/* Highlight box for key feature */
.highlight-feature-box {
    background: linear-gradient(135deg, rgba(72, 181, 73, 0.08), rgba(72, 181, 73, 0.02));
    border: 1px solid rgba(72, 181, 73, 0.15);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .highlight-feature-box i {
        color: var(--secondary, #48b549);
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .highlight-feature-box p {
        color: #000;
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.6;
    }

    .highlight-feature-box strong {
        color: #00B894;
    }

/* Nested feature list in tab */
.nested-features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    border-left: 2px solid rgba(72, 181, 73, 0.3);
    margin-left: 8px;
}

    .nested-features li {
        padding: 4px 0 4px 16px;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.55);
        position: relative;
    }

        .nested-features li::before {
            content: '';
            position: absolute;
            left: -21px;
            top: 12px;
            width: 10px;
            height: 2px;
            background: var(--secondary, #48b549);
        }

/* Setup speed highlight */
.setup-speed {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 20px 0;
}

.setup-speed-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #48b549, #3a923c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .setup-speed-icon i {
        color: #fff;
        font-size: 1.3rem;
    }

.setup-speed-text h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.setup-speed-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

.setup-speed-time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary, #48b549);
    line-height: 1;
    white-space: nowrap;
}

/* Spec table for smart systems */
.spec-table td:first-child {
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    width: 35%;
}

/* Quick nav pills for mobile */
.quick-nav-pills {
    display: none;
}

@media (max-width: 768px) {
    .quick-nav-pills {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .quick-nav-pills::-webkit-scrollbar {
            display: none;
        }

    .quick-nav-pill {
        white-space: nowrap;
        padding: 8px 16px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.03);
        color: rgba(255,255,255,0.6);
        font-size: 0.75rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        flex-shrink: 0;
    }

        .quick-nav-pill:hover,
        .quick-nav-pill.active {
            background: rgba(72, 181, 73, 0.1);
            border-color: rgba(72, 181, 73, 0.3);
            color: var(--secondary, #48b549);
        }
}/* ===== SAMPLING COMPONENTS PAGE-SPECIFIC STYLES ===== */
/* Use these overrides if your Style.css doesn't cover them */

.sampling-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .sampling-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.sampling-intro-visual {
    position: relative;
    background: linear-gradient(135deg, rgba(72, 181, 73, 0.08), rgba(72, 181, 73, 0.02));
    border: 1px solid rgba(72, 181, 73, 0.15);
    border-radius: 16px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 400px;
}

    .sampling-intro-visual .visual-icon-row {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .sampling-intro-visual .visual-icon-item {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--secondary, #48b549);
        transition: all 0.3s ease;
    }

        .sampling-intro-visual .visual-icon-item:hover {
            background: rgba(72, 181, 73, 0.1);
            border-color: rgba(72, 181, 73, 0.3);
            transform: translateY(-4px);
        }

    .sampling-intro-visual .visual-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255,255,255,0.4);
        text-align: center;
        margin-top: -20px;
    }

    .sampling-intro-visual .visual-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .sampling-intro-visual .stat-item {
        text-align: center;
    }

    .sampling-intro-visual .stat-number {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--secondary, #48b549);
        line-height: 1;
    }

    .sampling-intro-visual .stat-label {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.4);
        margin-top: 6px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

.sampling-intro-text .drop-cap {
    float: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 6px;
    color: var(--secondary, #48b549);
}

.sampling-intro-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.sampling-intro-text strong {
    color: #fff;
    font-weight: 600;
}

/* Product cards inside tabs */
.tab-product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

    .tab-product-card:hover {
        border-color: rgba(72, 181, 73, 0.2);
        background: rgba(72, 181, 73, 0.03);
    }

    .tab-product-card h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.3rem;
        color: #6C5CE7;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .tab-product-card h3 i {
            color: var(--secondary, #48b549);
            font-size: 1.1rem;
        }

    .tab-product-card p {
        color:#000;
        line-height: 1.7;
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .tab-product-card .card-features {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

@media (max-width: 600px) {
    .tab-product-card .card-features {
        grid-template-columns: 1fr;
    }
}

.tab-product-card .card-features li {
    font-size: 0.85rem;
    color: #000;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

    .tab-product-card .card-features li i {
        color: var(--secondary, #48b549);
        font-size: 0.7rem;
        margin-top: 5px;
        flex-shrink: 0;
    }

.tab-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary, #48b549);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .tab-product-link:hover {
        gap: 14px;
        color: #5fd060;
    }

    .tab-product-link i {
        transition: transform 0.3s ease;
    }

    .tab-product-link:hover i {
        transform: translateX(4px);
    }

/* Spec table adjustments for sampling components */
.spec-table td:first-child {
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}

/* Downloads grid */
.downloads-grid {
    display: grid;
    gap: 16px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .download-card:hover {
        border-color: rgba(72, 181, 73, 0.3);
        background: rgba(72, 181, 73, 0.05);
        transform: translateY(-2px);
    }

.download-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(231, 76, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .download-icon i {
        font-size: 1.4rem;
        color: #e74c3c;
    }

.download-info {
    flex: 1;
}

    .download-info h4 {
        color: #fff;
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .download-info p {
        color: rgba(255,255,255,0.4);
        font-size: 0.8rem;
    }

.download-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.download-card:hover .download-arrow {
    color: var(--secondary, #48b549);
    transform: translateY(2px);
}

/* Quick nav pills for mobile */
.quick-nav-pills {
    display: none;
}

@media (max-width: 768px) {
    .quick-nav-pills {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .quick-nav-pills::-webkit-scrollbar {
            display: none;
        }

    .quick-nav-pill {
        white-space: nowrap;
        padding: 8px 16px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.03);
        color: rgba(255,255,255,0.6);
        font-size: 0.75rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        flex-shrink: 0;
    }

        .quick-nav-pill:hover,
        .quick-nav-pill.active {
            background: rgba(72, 181, 73, 0.1);
            border-color: rgba(72, 181, 73, 0.3);
            color: var(--secondary, #48b549);
        }
}/* ========================================
           PRODUCT DETAIL PAGE STYLES
           ======================================== */

/* Product Hero Section */
.prod-hero-detail {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

    .prod-hero-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('img/slider1.jpg') center/cover no-repeat;
        opacity: 0.15;
    }

    .prod-hero-detail::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: linear-gradient(to top, var(--bg-dark), transparent);
    }

    .prod-hero-detail .container {
        position: relative;
        z-index: 2;
    }

    .prod-hero-detail .prod-breadcrumb {
        margin-bottom: 20px;
    }

    .prod-hero-detail h1 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .prod-hero-detail .hero-tagline {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.7);
        font-weight: 300;
    }

        .prod-hero-detail .hero-tagline strong {
            color: var(--secondary);
            font-weight: 600;
        }

/* Product Main Content */
.product-detail-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Image Slider */
.product-image-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.slider-main {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

    .slider-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 30px;
        display: none;
        transition: opacity 0.5s ease;
    }

        .slider-main img.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slider-nav {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: #0a0a0a;
}

    .slider-nav img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        padding: 8px;
        border-radius: 10px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        background: #1a1a1a;
    }

        .slider-nav img:hover,
        .slider-nav img.active {
            border-color: var(--secondary);
            background: #222;
        }

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 5;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .slider-arrow:hover {
        background: var(--secondary);
        border-color: var(--secondary);
    }

/* Product Info */
.product-info-detail {
    padding: 10px 0;
}

    .product-info-detail .drop-cap {
        font-size: 4rem;
        float: left;
        line-height: 0.8;
        margin-right: 12px;
        margin-top: 5px;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        color: var(--secondary);
    }

    .product-info-detail p {
        color: #000;
        line-height: 1.8;
        margin-bottom: 30px;
        font-size: 1.05rem;
    }

        .product-info-detail p strong {
            color: var(--secondary);
        }

.applications-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .applications-section h3::after {
        content: '';
        flex: 1;
        height: 2px;
        background: linear-gradient(to right, var(--secondary), transparent);
    }

.applications-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .applications-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #0D0D0D;
        font-size: 0.95rem;
        padding: 12px 16px;
        background: rgba(255,255,255,0.03);
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.05);
        transition: all 0.3s ease;
    }

        .applications-list li:hover {
            background: rgba(72, 181, 73, 0.08);
            border-color: rgba(72, 181, 73, 0.2);
            transform: translateX(5px);
        }

        .applications-list li i {
            color: var(--secondary);
            font-size: 0.8rem;
        }

/* Specification Tabs */
.spec-tabs-section {
    padding: 80px 0;
    background: #dddddd;
}

.spec-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.spec-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.spec-tab-btn {
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .spec-tab-btn:hover {
        background: rgba(72, 181, 73, 0.1);
        border-color: rgba(72, 181, 73, 0.3);
        color: #fff;
    }

    .spec-tab-btn.active {
        background: var(--secondary);
        border-color: var(--secondary);
        color: #fff;
    }

.spec-tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

    .spec-tab-content.active {
        display: block;
    }

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 16px 20px;
        margin-bottom: 8px;
        background: rgba(255,255,255,0.02);
        border-radius: 12px;
        border-left: 3px solid var(--secondary);
        color: #000;
        font-size: 0.95rem;
        line-height: 1.6;
        transition: all 0.3s ease;
    }

        .features-list li:hover {
            background: rgba(72, 181, 73, 0.06);
            transform: translateX(5px);
        }

        .features-list li i {
            color: var(--secondary);
            margin-top: 4px;
            flex-shrink: 0;
        }

        .features-list li ul {
            margin-top: 10px;
            padding-left: 25px;
            list-style: disc;
        }

            .features-list li ul li {
                border-left: none;
                padding: 8px 10px;
                margin-bottom: 4px;
                background: rgba(255,255,255,0.02);
                font-size: 0.9rem;
            }

/* Specification Table */
.spec-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

    .spec-table thead {
        background: linear-gradient(135deg, #1a1a2e, #16213e);
    }

    .spec-table th {
        padding: 18px 20px;
        text-align: left;
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: #fff;
        border-bottom: 2px solid var(--secondary);
    }

    .spec-table td {
        padding: 14px 20px;
        color: #000;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .spec-table tbody tr {
        transition: all 0.3s ease;
    }

        .spec-table tbody tr:hover {
            background: rgba(72, 181, 73, 0.05);
        }

        .spec-table tbody tr:last-child td {
            border-bottom: none;
        }

    .spec-table td:first-child {
        font-weight: 500;
        color: #000;
        background: rgba(255,255,255,0.02);
        width: 35%;
    }

/* Download Card */
.download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(72, 181, 73, 0.1), rgba(72, 181, 73, 0.02));
    border: 1px solid rgba(72, 181, 73, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .download-card:hover {
        background: linear-gradient(135deg, rgba(72, 181, 73, 0.2), rgba(72, 181, 73, 0.05));
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(72, 181, 73, 0.15);
    }

.download-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .download-icon i {
        font-size: 1.8rem;
        color: #fff;
    }

.download-info h4 {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 5px;
}

.download-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.download-arrow {
    margin-left: auto;
    color: var(--secondary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.download-card:hover .download-arrow {
    transform: translateX(5px);
}

/* Featured Products Section Override */
.featured-products-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.featured-product-card {
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .featured-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, var(--secondary), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .featured-product-card:hover {
        transform: translateY(-8px);
        border-color: rgba(72, 181, 73, 0.2);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

        .featured-product-card:hover::before {
            opacity: 1;
        }

    .featured-product-card h4 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.15rem;
        color: #fff;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .featured-product-card p {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

.featured-product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .featured-product-link:hover {
        gap: 12px;
    }

    .featured-product-link i {
        transition: transform 0.3s ease;
    }

    .featured-product-link:hover i {
        transform: translateX(3px);
    }

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 20px;
    }

    .cta-content p {
        color: rgba(255,255,255,0.7);
        font-size: 1.1rem;
        margin-bottom: 35px;
        line-height: 1.7;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 16px 40px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-cta-primary:hover {
        background: #3a923c;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(72, 181, 73, 0.3);
    }

.btn-cta-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-cta-secondary:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.05);
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .prod-hero-detail {
        min-height: 35vh;
        padding: 100px 0 40px;
    }

    .applications-list {
        grid-template-columns: 1fr;
    }

    .spec-tabs-nav {
        gap: 6px;
    }

    .spec-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .featured-products-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* 1. Modern Typography Hero */
.gas-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    margin-top: 80px; /* Offset for your fixed header */
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .gas-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(72, 181, 73, 0.06) 0%, transparent 70%);
        z-index: 0;
    }

.gas-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.gas-breadcrumb {
    font-size: 0.85rem;
    color: #555555;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .gas-breadcrumb a {
        color: #48b549;
        text-decoration: none;
        font-weight: 600;
    }

.gas-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    color: #111111;
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.gas-quote {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #555555;
    border-left: 3px solid #48b549;
    padding-left: 20px;
    max-width: 600px;
    line-height: 1.6;
}

/* 2. Bento Grid Layout */
.gas-bento-section {
    background-color: #f8f9fa;
    padding: 60px 10% 100px;
}

.gas-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gas-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

    .gas-card:hover {
        border-color: rgba(72, 181, 73, 0.3);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

.gas-span-2 {
    grid-column: span 2;
}

.gas-card-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.gas-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: #111111;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.gas-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.gas-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #48b549;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

    .gas-arrow-link span {
        display: inline-block;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #48b549;
        text-align: center;
        line-height: 28px;
        transition: 0.4s ease;
    }

.gas-card:hover .gas-arrow-link span {
    background-color: #48b549;
    color: #fff;
}

/* Mobile Responsive for new layout */
@media (max-width: 992px) {
    .gas-bento-grid {
        grid-template-columns: 1fr;
    }

    .gas-span-2 {
        grid-column: span 1;
    }

    .gas-hero {
        min-height: 60vh;
        padding: 0 5%;
    }
}
/* 1. Modern Typography Hero (No Background Image needed) */
.gamod-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Left align for modern look */
    padding: 0 10%;
    margin-top: 80px; /* Header offset */
    background-color: var(--gamod-dark);
    position: relative;
    overflow: hidden;
}

    /* Subtle background gradient effect */
    .gamod-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(72, 181, 73, 0.08) 0%, transparent 70%);
        z-index: 0;
    }

.gamod-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.gamod-breadcrumb {
    font-size: 0.85rem;
    color: var(--gamod-text-sub);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .gamod-breadcrumb a {
        color: var(--gamod-primary);
        text-decoration: none;
    }

.gamod-main-title {
    font-family: var(--gamod-font-heading);
    font-size: clamp(3rem, 8vw, 7rem); /* Fluid typography */
    font-weight: 700;
    color: var(--gamod-text-main);
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.gamod-quote {
    font-family: var(--gamod-font-body);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--gamod-text-sub);
    border-left: 3px solid var(--gamod-primary);
    padding-left: 20px;
    max-width: 600px;
    line-height: 1.6;
}

/* 2. Bento Grid Layout */
.gamod-bento-section {
    background-color: #F4F7F6;
    padding: 60px 10% 100px;
}

.gamod-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card Base */
.gamod-card {
    background-color: var(--gamod-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--gamod-transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .gamod-card:hover {
        border-color: rgba(72, 181, 73, 0.3);
        transform: translateY(-5px);
        background-color: #1a1a1a;
    }

/* Make the first card span 2 columns */
.gamod-span-2 {
    grid-column: span 2;
}

/* Card Numbering (Modern UI touch) */
.gamod-card-num {
    font-family: var(--gamod-font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03); /* Very faint background number */
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.gamod-card h3 {
    font-family: var(--gamod-font-heading);
    font-size: 1.4rem;
    color: var(--gamod-text-main);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.gamod-card p {
    color: var(--gamod-text-sub);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Modern Arrow Link (No text, just icon) */
.gamod-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gamod-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

    .gamod-arrow-link span {
        display: inline-block;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid var(--gamod-primary);
        text-align: center;
        line-height: 28px;
        transition: var(--gamod-transition);
    }

.gamod-card:hover .gamod-arrow-link span {
    background-color: var(--gamod-primary);
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .gamod-bento-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
    }

    .gamod-span-2 {
        grid-column: span 1; /* Reset span */
    }

    .gamod-hero {
        min-height: 60vh;
        padding: 0 5%;
    }
}
 /* --- Intro Section --- */
.sp-intro-section {
    background-color: var(--sp-bg-light);
    text-align: center;
}

.sp-intro-subtitle {
    color: var(--sp-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.sp-intro-quote {
    font-family: var(--sp-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sp-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* --- Product Categories Grid --- */
.sp-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sp-category-card {
    background: var(--sp-white);
    border-radius: var(--sp-border-radius);
    overflow: hidden;
    box-shadow: var(--sp-shadow);
    transition: var(--sp-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
}

    .sp-category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border-color: var(--sp-primary);
    }

.sp-category-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .sp-category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.sp-category-card:hover .sp-category-img img {
    transform: scale(1.1);
}

.sp-category-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sp-category-icon {
    width: 60px;
    height: 60px;
    background: rgba(72, 181, 73, 0.1);
    color: var(--sp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: -60px; /* Pull up over image */
    position: relative;
    z-index: 2;
    border: 4px solid var(--sp-white);
}

.sp-category-title {
    font-family: var(--sp-font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--sp-secondary);
}

.sp-category-desc {
    font-size: 0.95rem;
    color: var(--sp-text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.sp-link-arrow {
    color: var(--sp-primary);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--sp-transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .sp-link-arrow:hover {
        color: var(--sp-primary-hover);
        gap: 10px;
    }
.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-section-padding {
    padding: 80px 0;
}
/* 2. Hero Banner */
.prod-hero {
    position: relative;
    height: 30vh;
    min-height: 400px;
    background : #6C5CE7; /* Change Image URL here */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Space for fixed header */
}

.prod-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.prod-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--prod-white);
    padding: 0 20px;
}

.prod-hero-title {
    font-family: var(--prod-font-heading);
    font-size: 3rem; color:#fff;
    font-weight: 700;
    margin-bottom: 0;
}

.prod-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

    .prod-breadcrumb a {
        color: var(--prod-white);
        text-decoration: none;
        margin: 0 5px;
    }

/* 3. Intro Quote Section */
.prod-intro {
    background-color: var(--prod-bg-light);
    text-align: center;
    padding: 80px 20px;
}

.prod-intro-subtitle {
    color: var(--prod-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.prod-quote {
    font-family: var(--prod-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--prod-text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* 4. Product Categories Grid */
.prod-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prod-section-padding {
    padding: 80px 0;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.prod-card {
    background: var(--prod-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
}

    .prod-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border-color: var(--prod-primary);
    }

.prod-card-img {
    height: 220px;
    overflow: hidden;
}

    .prod-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.prod-card:hover .prod-card-img img {
    transform: scale(1.1);
}

.prod-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prod-icon {
    width: 60px;
    height: 60px;
    background: rgba(72, 181, 73, 0.1);
    color: var(--prod-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: -60px; /* Pull icon up */
    position: relative;
    z-index: 2;
    border: 4px solid var(--prod-white);
}

.prod-card h3 {
    font-family: var(--prod-font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--prod-text-dark);
}

.prod-card p {
    font-size: 0.95rem;
    color: var(--prod-text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.prod-btn-link {
    color: var(--prod-primary);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .prod-btn-link:hover {
        color: var(--prod-primary-hover);
        gap: 10px;
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .prod-hero-title {
        font-size: 2rem;
    }

    .prod-quote {
        font-size: 1.4rem;
    }
}/* --- Utilities --- */
.sa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sa-section-padding {
    padding: 80px 0;
}

.sa-text-center {
    text-align: center;
}

/* --- Header --- */
.sa-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--sa-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--sa-transition);
}

.sa-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.sa-logo img {
    height: 50px;
    width: auto;
}/* --- Hero Banner (Static, No Slider) --- */
.sa-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('https://picsum.photos/seed/sarveshlab/1920/1080'); /* Tech/Industry Background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Offset for fixed header */
}

.sa-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.sa-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--sa-white);
    padding: 0 20px;
    animation: saFadeUp 1s ease-out;
}

.sa-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

    .sa-breadcrumb a {
        color: var(--sa-white);
        text-decoration: none;
        margin: 0 5px;
    }

.sa-hero-title {
    font-family: var(--sa-font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* --- Intro Section --- */
.sa-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sa-intro-text h2 {
    font-family: var(--sa-font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--sa-secondary);
}

.sa-subtitle {
    color: var(--sa-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.sa-intro-text p {
    margin-bottom: 15px;
    color: var(--sa-text-light);
}

.sa-intro-img img {
    width: 100%;
    border-radius: var(--sa-border-radius);
    box-shadow: var(--sa-shadow);
    transition: var(--sa-transition);
}

    .sa-intro-img img:hover {
        transform: scale(1.02);
    }

/* --- Tabs Section --- */
.sa-tabs-container {
    background: var(--sa-bg-light);
    border-radius: var(--sa-border-radius);
    overflow: hidden;
    box-shadow: var(--sa-shadow);
    margin-top: 40px;
}

.sa-tab-headers {
    display: flex;
    background: var(--sa-white);
    border-bottom: 1px solid #eee;
}

.sa-tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: none;
    font-family: var(--sa-font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--sa-transition);
    color: var(--sa-text-light);
    position: relative;
}

    .sa-tab-btn:hover {
        background: #f0f0f0;
        color: var(--sa-primary);
    }

    .sa-tab-btn.active {
        color: var(--sa-primary);
        background: #fff;
    }

        .sa-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--sa-primary);
        }

.sa-tab-content {
    padding: 40px;
    display: none;
    animation: saFadeIn 0.5s ease;
}

    .sa-tab-content.active {
        display: block;
    }

    .sa-tab-content ul {
        list-style: none;
        margin-top: 20px;
    }

        .sa-tab-content ul li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

            .sa-tab-content ul li::before {
                content: '\f058'; /* FontAwesome Check Circle */
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                position: absolute;
                left: 0;
                color: var(--sa-primary);
            }

/* --- Featured Products --- */
.sa-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sa-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sa-product-card {
    background: var(--sa-white);
    border: 1px solid #eee;
    border-radius: var(--sa-border-radius);
    overflow: hidden;
    transition: var(--sa-transition);
    display: flex;
    flex-direction: column;
}

    .sa-product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--sa-shadow);
        border-color: var(--sa-primary);
    }

.sa-product-img {
    height: 200px;
    background: #eee;
    overflow: hidden;
}

    .sa-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.sa-product-card:hover .sa-product-img img {
    transform: scale(1.1);
}

.sa-product-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .sa-product-body h3 {
        font-family: var(--sa-font-heading);
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: var(--sa-secondary);
    }

    .sa-product-body p {
        font-size: 0.9rem;
        color: var(--sa-text-light);
        margin-bottom: 20px;
        flex-grow: 1;
    }

.sa-link-text {
    color: var(--sa-primary);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--sa-transition);
}

    .sa-link-text:hover {
        color: var(--sa-primary-hover);
        padding-left: 5px;
    }
/* --- VARIABLES --- */
:root {
    /* Palette extracted from Logo description */
    --primary: #6c5ce7; /* Purple from Logo Text */
    --primary-dark: #5849be;
    --secondary: #00b894; /* Green for "Safe/Gas" accuracy */
    --accent: #fdcb6e;
    --bg-body: #f4f7f6;
    --bg-card: #ffffff;
    --text-main: #2d3436;
    --text-light: #636e72;
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(108, 92, 231, 0.08);
    --border-radius: 16px;
    --gamod-primary: #48b549;
    --gamod-dark: #0a0a0a;
    --gamod-card-bg: #141414;
    --gamod-text-main: #ffffff;
    --gamod-text-sub: #a0a0a0;
    --gamod-font-heading: 'Space Grotesk', sans-serif;
    --gamod-font-body: 'Outfit', sans-serif;
    --gamod-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    /* Hide default cursor ONLY if custom cursor is active (handled by JS) */
    cursor: default;
}

    /* Applied via JS to prevent issues if JS fails */
    body.custom-cursor-active {
        cursor: none;
    }

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- CUSTOM CURSOR (Simple Circle) --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: normal; /* Ensures visibility on all backgrounds */
}

/* 1. The Dot (Center) */
.cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary); /* Solid Purple */
    z-index: 10000;
}

/* 2. The Outline (Ring) */
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary); /* Hollow Purple Ring */
    transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
}

/* --- CURSOR HOVER STATE (Simulating "Safe/Analyzed") --- */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--secondary); /* Turn Green (Safe) */
    background-color: rgba(0, 184, 148, 0.1); /* Light green tint */
    border-width: 3px;
}

body.hovering .cursor-dot {
    background-color: var(--secondary); /* Dot turns Green */
    transform: translate(-50%, -50%) scale(1.5); /* Dot grows slightly */
}

/* --- PROCESSING SCROLL BAR --- */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.1s linear;
}

/* --- HEADER --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: var(--primary);
    }

        .nav-link:hover::after {
            width: 100%;
        }

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    display: inline-block;
}

    .btn-primary:hover {
        background: transparent;
        color: var(--primary);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    }

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* --- HERO SLIDER --- */
/* Slider Container */
.banner-slider {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    overflow: hidden;
    background-color: #333;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Active Slide State */
    .slide.active {
        opacity: 1;
        z-index: 1;
    }

/* Background Image */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    z-index: -1; /* Behind text */
}

/* Dark overlay so text is readable */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}

/* Text Content */
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
}

    .slide-content h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

.tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

    .btn:hover {
        background: #0056b3;
    }

/* Navigation Arrows */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
}

    .prev-btn:hover, .next-btn:hover {
        background: rgba(255,255,255,0.8);
        color: black;
    }

.next-btn {
    right: 0;
}

.prev-btn {
    left: 0;
}

/* Dots */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

    .dot.active {
        background-color: #007bff;
    }

/* --- PROCESSING ANIMATION ON CARDS --- */
.process-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

    /* Scanning effect on hover */
    .process-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
        transform: skewX(-20deg);
        transition: 0.5s;
        pointer-events: none;
    }

    .process-card:hover::before {
        left: 100%;
        transition: 0.7s;
    }

    .process-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
    }

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.process-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- SECTIONS COMMON --- */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        color: var(--secondary);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-family: var(--font-display);
        font-size: 2.5rem;
        color: var(--primary);
    }

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 500;
}

.check-list i {
    color: var(--secondary);
}

/* --- STATS --- */
.stats-section {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FEATURED PRODUCTS --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-thumb {
    height: 200px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

    .product-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.product-card:hover .product-thumb img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

    .product-info h4 {
        font-size: 1.2rem;
        color: var(--text-main);
        margin-bottom: 10px;
    }

    .product-info p {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-bottom: 20px;
        min-height: 60px;
    }

.link-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .link-text:hover i {
        transform: translateX(5px);
        transition: 0.3s;
    }

/* --- FOOTER --- */
footer {
    background: #2d3436;
    color: #dfe6e9;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-display);
}

.footer-col p, .footer-col li {
    font-size: 0.9rem;
    color: #b2bec3;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 5px;
    transition: 0.3s;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 0.85rem;
    color: #636e72;
}

/* --- ANIMATION UTILS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .slide h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: 0.4s;
    }

        .nav-menu.active {
            right: 0;
        }

    .hamburger {
        display: block;
    }

    .slide-bg {
        display: none;
    }

    .slide-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
